home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / hf / dsp / source / pam.mem < prev    next >
Encoding:
Text File  |  1991-06-23  |  1.0 KB  |  31 lines

  1. ;***************************************************************
  2. ;* PAM.MEM -- Memory allocation controls for PAM modem           *
  3. ;*                                   *
  4. ;* Copyright (C) 1991 by Alef Null. All rights reserved.       *
  5. ;* Author(s): Jarkko Vuori, OH2LNS                   *
  6. ;* Modification(s):                           *
  7. ;***************************************************************
  8.  
  9. ; P memory usage
  10. ;   0000 - 03FF program code
  11. ;   0400 - 07FF output buffer
  12. ;   0800 - 0FFF input buffer
  13.  
  14. ; x: and y: must begin after l: which is max. 20 words long
  15. ; p: must begin after interrupt vectors
  16. base        x:20,y:20,l:$0,p:$40
  17.  
  18. ; PAM bulk data here, so that we can use short address for various items
  19. section     PAM        y:$30
  20.  
  21. ; PAMdata section contains all modulo addressed parts of PAM section
  22. ; x: contains modulo-16 data
  23. section     PAMData     x:$40,y:$40 ; five lower bits must be zero
  24.  
  25. ; Main section contains addressed parts
  26. ; x: contains modulo-1024 data
  27. section     Init        x:$400
  28.  
  29. ; KissQue section contains data buffers modulo-1024
  30. section     KissQue     p:$0400
  31.